|
|||||||||||||||||||
This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
AllTests.java | - | 0% | 0% | 0% |
|
1 |
package net.sf.flock.support; |
|
2 |
|
|
3 |
import junit.framework.Test; |
|
4 |
import junit.framework.TestSuite; |
|
5 |
|
|
6 |
/** |
|
7 |
* @version $Revision: 1.3 $ |
|
8 |
* @author $Author: phraktle $ |
|
9 |
*/ |
|
10 |
public class AllTests { |
|
11 |
|
|
12 | 0 |
public static Test suite() { |
13 | 0 |
TestSuite suite = new TestSuite("Test for net.sf.flock.support"); |
14 |
//$JUnit-BEGIN$ |
|
15 | 0 |
suite.addTest(new TestSuite(OpmlSubscriptionImportTest.class)); |
16 |
//$JUnit-END$ |
|
17 | 0 |
return suite; |
18 |
} |
|
19 |
} |
|
20 |
|
|